home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950726-19950929 / 000282_news@columbia.edu_Mon Sep 4 03:17:21 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06888
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 3 Sep 1995 23:44:47 -0400
  3. Received: by apakabar.cc.columbia.edu id AA03318
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 3 Sep 1995 23:44:45 -0400
  5. Path: news.columbia.edu!panix!news.mathworks.com!news.kei.com!travelers.mail.cornell.edu!newstand.syr.edu!usenet
  6. From: vefatica@syr.edu (Vincent Fatica)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: File Transfer
  9. Date: Mon, 04 Sep 1995 03:17:21 GMT
  10. Organization: Syracuse University
  11. Lines: 48
  12. Message-Id: <42dqug$eb7@newstand.syr.edu>
  13. References: <702050560wnr@cddc.demon.co.uk>
  14. Reply-To: vefatica@syr.edu
  15. Nntp-Posting-Host: sudial-131.syr.edu
  16. X-Newsreader: Forte Free Agent 1.0.82
  17. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18.  
  19. Brenda Robb <Brenda@cddc.demon.co.uk> wrote:
  20.  
  21.  
  22. >MS-Kermit vers. 3.14      C-Kermit vers. 5A(179) BETA        Unix SVR4
  23.  
  24. >Can anyone help me, I'm trying to do File Transfers from Unix to 
  25. >IBM-PC. My problem is that I don't want the operator to have to use 
  26. >kermit command level.
  27. >I can set my Unix kermit in SERVER mode but then I have to break down 
  28. >to local kermit command line to issue my GET command.
  29. >I've tried to use the TERMINALS/TERMINALR macros, as described in 
  30. >MS-KERMIT vers 2.32, and then SETting KEYs for those verbs 
  31. >eg SET KEY \2415 \Kterminals etc but kermit tells me that the verbs 
  32. >don't exist.
  33.  
  34. Brenda,
  35.  
  36. You might do well to get the latest MSKermit, v3.14, (tell you where later)
  37. and use the newer APC command (provided the remote host's Kermit is new
  38. enough). The APC command allows either Kermit to issue commands to the
  39. other. A download, for example, can be accomplished without escaping to the
  40. local Kermit. As an example, here's my bsend macro which I keep on the
  41. remote host; notice the APC command ... it tells the local Kermit to receive
  42. ... no moving around between Kermits.
  43.  
  44. define bsend asg \%9 \ffiles(\%1),-
  45.   if = 0 \%9 end 1 {\?File not found},-
  46.   set file type binary, set delay 1, apc receive,-
  47.   if = 1 \%9 send \%1 \%2,-
  48.   else send \%1
  49.  
  50. For example, I would tell the remote (UNIX) Kermit to:
  51.  
  52.     bsend file1 file2 file3
  53.  
  54. That's it!
  55.  
  56. Entire Kermit package: ftp kermit.columbia.edu:/kermit/archives/msvibm.zip
  57. kermit.exe only: ftp kermit.columbia.edu:/kermit/bin/msvibm.exe
  58.  
  59.  - Vince
  60.  
  61. *************************************
  62.    Vincent Fatica
  63.    Syracuse University Mathematics
  64.    vefatica@syr.edu
  65. *************************************
  66.